home *** CD-ROM | disk | FTP | other *** search
/ Day Cry / Day Cry CD.bin / oh_towns / install / instsnd.c < prev    next >
Text File  |  1994-09-20  |  1KB  |  47 lines

  1. /*************************************************************************
  2. *    [âTâEâôâh]âCâôâXâgü[âïÅêù¥
  3. *************************************************************************/
  4.  
  5.  
  6. char    *get_inst_snd_mnu()
  7. {
  8.     char    *mnu;
  9.  
  10.     if ( (mnu = MNU_open()) == NULL )
  11.         return (NULL);
  12.     MNU_datAdd( mnu, 0, 'G', Rom16x16, 0, "install_otohime", 0, "ë╣òPÄ╡ò╧ë╗"       );
  13.     MNU_datAdd( mnu, 0, 'G', Rom16x16, 0, "install_gwav"   , 0, "PCM Player 'GWAV'");
  14.     MNU_setPosition(mnu,-1);
  15.  
  16.     return (mnu);
  17. }
  18.  
  19. int        install_otohime()
  20. {
  21.     static char    *buf[6] =
  22.     {
  23.         "softname    \"üuë╣òPÄ╡ò╧ë╗üv\"",
  24.         "instfile    /OH_TOWNS/OTOHIME    \"*.exp *.doc\"",
  25.         "help        OTOHIME.GGG",
  26.         "arcfile    src.lzh    SRC",
  27.         "item        \"ë╣òPÄ╡ò╧ë╗\",OTOHIME.EXP,\"\",2",
  28.         NULL
  29.     };
  30.  
  31.     return install_exec(buf);
  32. }
  33.  
  34. int        install_gwav()
  35. {
  36.     static char    *buf[6] =
  37.     {
  38.         "softname    \"üuPCM Player 'GWAV'üv\"",
  39.         "instfile    /OH_TOWNS/SHELTOOL/GWAV    \"*.*\"",
  40.         "help        SRC/GWAV.DOC",
  41.         "item        \"GWAV\",EXP\\GWAV.EXG,\"\",2",
  42.         NULL
  43.     };
  44.  
  45.     return install_exec(buf);
  46. }
  47.